home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 30
/
Aminet 30 (1999)(Schatztruhe)[!][Apr 1999].iso
/
Aminet
/
biz
/
demo
/
eTeacherDemo.lha
/
StartUp.script
< prev
next >
Wrap
Text File
|
1998-08-31
|
2KB
|
53 lines
; **********************************************************************
; ** **
; ** StartUp script - Called on startup by eTeacher **
; ** ------------------------------------------------------ **
; ** **
; ** You can add whatever you find useful or needed here, **
; ** i.e. you can mount CD-ROM or assign whatever you **
; ** with or do something like that... **
; ** **
; ** Electronic Teacher 5 CD © 1998 W.F.M.H. **
; ** **
; **********************************************************************
;
; OK, let's do the job...
; -----------------------------
;
; Do NOT remove this! eTeacher does not check result
; codes, so it's better to try to finish the script execution
; even if single command fails...
FAILAT 99
; Following line is also REQUIRED, as we didn't want to put
; our fonts to global FONTS: directory. So we need to add
; the assign and tell AmigaDOS where to look for fonts too,
; because Electronic Teacher can't live without them...
ASSIGN <>NIL: FONTS: FONTS ADD
; Your turn - add whatever you with below.
; ---------------------------------------------------
;
; If you are not familiar with scripts:
;
; 1. To add your custom assigns:
; ASSIGN YOUR_ASSIGN: ADD
;
; If you don't want this assign to be used until you refer to it,
; use DEFER switch:
;
; ASSIGN YOUR_ASSIGN: ADD DEFER
;
; 2. To mount any unmounted volume (e.g. if you want your
; CD-ROM drive to be visible as CD0:, and proper mountlist exists):
;
; MOUNT CD0:
;
; Please refer AmigaDOS manual for more information.